Control structures
Things to remember
Use = for assignment, == for
comparisons
Logical && and || are short circuits
Use
break
to implement multiple exits
from loops
For each case in a
switch
statement,
there should be a
break
statement
unless required otherwise.